php var dump into string

32

<?php
ob_start();
var_dump($someVar);
$result = ob_get_clean();
?>

Comments

Submit
0 Comments